home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / sysdeps / mach / hurd / __readlink.c < prev    next >
C/C++ Source or Header  |  1994-05-12  |  2KB  |  68 lines

  1. /* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3.  
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8.  
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with the GNU C Library; see the file COPYING.LIB.  If
  16. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  17. Cambridge, MA 02139, USA.  */
  18.  
  19. #include <ansidecl.h>
  20. #include <unistd.h>
  21. #include <hurd.h>
  22. #include <hurd/paths.h>
  23. #include <fcntl.h>
  24. #include <string.h>
  25.  
  26. /* Read the contents of the symbolic link PATH into no more than
  27.    LEN bytes of BUF.  The contents are not null-terminated.
  28.    Returns the number of characters read, or -1 for errors.  */
  29. ssize_t
  30. DEFUN(__readlink, (path, buf, len),
  31.       CONST char *path AND char *buf AND size_t len)
  32. {
  33.   error_t err;
  34.   file_t file;
  35.   char mybuf[2048], *transp = mybuf;
  36.   unsigned int translen = sizeof (mybuf);
  37.  
  38.   file = __path_lookup (path, O_NOTRANS, 0);
  39.   if (file == MACH_PORT_NULL)
  40.     return -1;
  41.  
  42.   err = __file_get_translator (file, &transp, &translen);
  43.   __mach_port_deallocate (__mach_task_self (), file);
  44.  
  45.   if (err)
  46.     return __hurd_fail (err);
  47.  
  48.   if (translen < sizeof (_HURD_SYMLINK) ||
  49.       memcmp (transp, _HURD_SYMLINK, sizeof (_HURD_SYMLINK)))
  50.     /* The file is not actually a symlink.  */
  51.     err = EINVAL;
  52.   else
  53.     {
  54.       /* This is a symlink; its translator is "/hurd/symlink\0target\0".  */
  55.       if (len > translen - sizeof (_HURD_SYMLINK))
  56.     len = translen - sizeof (_HURD_SYMLINK);
  57.       if (transp[translen - 1] == '\0')
  58.     /* Remove the null terminator.  */
  59.     --len;
  60.       memcpy (buf, transp + sizeof (_HURD_SYMLINK), len);
  61.     }
  62.  
  63.   if (transp != mybuf)
  64.     __vm_deallocate (__mach_task_self (), (vm_address_t) transp, translen);
  65.  
  66.   return err ? __hurd_fail (err) : len;
  67. }
  68.